GET api/superEntity/{superEntityId}/securitydepositfunds?sdIds[0]={sdIds[0]}&sdIds[1]={sdIds[1]}&date={date}
Get the fund related to the security deposit type ids in the list passed as parameter
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sdIds |
security deposit type ids |
Collection of integer |
Required |
| superEntityId |
super Entity Id |
integer |
Required |
| date |
date |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
Dictionary of security deposit type ids to fund id value
Dictionary of integer [key] and integer [value]Response Formats
application/json, text/json
Sample:
{
"1": 2,
"3": 4
}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfintint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfintint>
<Key>1</Key>
<Value>2</Value>
</KeyValueOfintint>
<KeyValueOfintint>
<Key>3</Key>
<Value>4</Value>
</KeyValueOfintint>
</ArrayOfKeyValueOfintint>